home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
comm
/
net
/
atcp_finger.lha
/
finger
/
Makefile
< prev
next >
Wrap
Makefile
|
1993-02-27
|
255b
|
17 lines
CC = gcc
PROG = finger
OBJS = finger.o lprint.o net.o sprint.o util.o
CFLAGS = -O2 -include /usr/include/bsd/bsd.h -I/usr/include/bsd
LDFLAGS = -N -s
LDLIBS = -lbsd
all: $(PROG)
$(PROG): $(OBJS)
clean:
rm -f *.o *~ core
clobber: clean
rm -f $(PROG)